home *** CD-ROM | disk | FTP | other *** search
/ FishMarket 1.0 / FishMarket v1.0.iso / fishies / 051-075 / disk_055 / screensave / iffw.c < prev    next >
C/C++ Source or Header  |  1992-05-06  |  8KB  |  221 lines

  1. /*----------------------------------------------------------------------*
  2.  * IFFW.C  Support routines for writing IFF-85 files.          1/23/86
  3.  * (IFF is Interchange Format File.)
  4.  *
  5.  * By Jerry Morrison and Steve Shaw, Electronic Arts.
  6.  * This software is in the public domain.
  7.  *
  8.  * This version for the Commodore-Amiga computer.
  9.  *----------------------------------------------------------------------*/
  10. #include "iff/iff.h"
  11. #include "iff/gio.h"
  12.  
  13. /* ---------- IFF Writer -----------------------------------------------*/
  14.  
  15. /* A macro to test if a chunk size is definite, i.e. not szNotYetKnown.*/
  16. #define Known(size)   ( (size) != szNotYetKnown )
  17.  
  18. /* Yet another weird macro to make the source code simpler...*/
  19. #define IfIffp(expr)  {if (iffp == IFF_OKAY)  iffp = (expr);}
  20.  
  21. /* ---------- OpenWIFF -------------------------------------------------*/
  22.  
  23. IFFP OpenWIFF(file, new0, limit)  BPTR file; GroupContext *new0; LONG limit; {
  24.     register GroupContext *new = new0;
  25.     register IFFP iffp = IFF_OKAY;
  26.  
  27.     new->parent       = NULL;
  28.     new->clientFrame  = NULL;
  29.     new->file         = file;
  30.     new->position     = 0;
  31.     new->bound        = limit;
  32.     new->ckHdr.ckID   = NULL_CHUNK;  /* indicates no current chunk */
  33.     new->ckHdr.ckSize = new->bytesSoFar = 0;
  34.  
  35.     if (0 > Seek(file, 0, OFFSET_BEGINNING))    /* Go to start of the file.*/
  36.     iffp = DOS_ERROR;
  37.     else if ( Known(limit) && IS_ODD(limit) )
  38.     iffp = CLIENT_ERROR;
  39.     return(iffp);
  40.     }
  41.  
  42. /* ---------- StartWGroup ----------------------------------------------*/
  43. IFFP StartWGroup(parent, groupType, groupSize, subtype, new)
  44.       GroupContext *parent, *new; ID groupType, subtype; LONG groupSize;  {
  45.     register IFFP iffp;
  46.  
  47.     iffp = PutCkHdr(parent, groupType, groupSize);
  48.     IfIffp( IFFWriteBytes(parent, (BYTE *)&subtype, sizeof(ID)) );
  49.     IfIffp( OpenWGroup(parent, new) );
  50.     return(iffp);
  51.     }
  52.  
  53. /* ---------- OpenWGroup -----------------------------------------------*/
  54. IFFP OpenWGroup(parent0, new0)  GroupContext *parent0, *new0; {
  55.     register GroupContext *parent = parent0;
  56.     register GroupContext *new    = new0;
  57.     register LONG ckEnd;
  58.     register IFFP iffp = IFF_OKAY;
  59.  
  60.     new->parent       = parent;
  61.     new->clientFrame  = parent->clientFrame;
  62.     new->file         = parent->file;
  63.     new->position     = parent->position;
  64.     new->bound        = parent->bound;
  65.     new->ckHdr.ckID   = NULL_CHUNK;
  66.     new->ckHdr.ckSize = new->bytesSoFar = 0;
  67.  
  68.     if ( Known(parent->ckHdr.ckSize) ) {
  69.     ckEnd = new->position + ChunkMoreBytes(parent);
  70.     if ( new->bound == szNotYetKnown || new->bound > ckEnd )
  71.         new->bound = ckEnd;
  72.     };
  73.  
  74.     if ( parent->ckHdr.ckID == NULL_CHUNK || /* not currently writing a chunk*/
  75.      IS_ODD(new->position) ||
  76.          (Known(new->bound) && IS_ODD(new->bound)) )
  77.     iffp = CLIENT_ERROR;
  78.     return(iffp);
  79.     }
  80.  
  81. /* ---------- CloseWGroup ----------------------------------------------*/
  82. IFFP CloseWGroup(old0)  GroupContext *old0; {
  83.     register GroupContext *old = old0;
  84.     IFFP iffp = IFF_OKAY;
  85.  
  86.     if ( old->ckHdr.ckID != NULL_CHUNK )  /* didn't close the last chunk */
  87.     iffp = CLIENT_ERROR;
  88.     else if ( old->parent == NULL ) {      /* top level file context */
  89.     if (GWriteFlush(old->file) < 0)  iffp = DOS_ERROR;
  90.     }
  91.     else {                  /* update parent context */
  92.     old->parent->bytesSoFar += old->position - old->parent->position;
  93.     old->parent->position = old->position;
  94.     };
  95.     return(iffp);
  96.     }
  97.  
  98. /* ---------- EndWGroup ------------------------------------------------*/
  99. IFFP EndWGroup(old)  GroupContext *old;  {
  100.     register GroupContext *parent = old->parent;
  101.     register IFFP iffp;
  102.  
  103.     iffp = CloseWGroup(old);
  104.     IfIffp( PutCkEnd(parent) );
  105.     return(iffp);
  106.     }
  107.  
  108. /* ---------- PutCk ----------------------------------------------------*/
  109. IFFP PutCk(context, ckID, ckSize, data)
  110.       GroupContext *context; ID ckID; LONG ckSize; BYTE *data; {
  111.     register IFFP iffp = IFF_OKAY;
  112.  
  113.     if ( ckSize == szNotYetKnown )
  114.     iffp = CLIENT_ERROR;
  115.     IfIffp( PutCkHdr(context, ckID, ckSize) );
  116.     IfIffp( IFFWriteBytes(context, data, ckSize) );
  117.     IfIffp( PutCkEnd(context) );
  118.     return(iffp);
  119.     }
  120.  
  121. /* ---------- PutCkHdr -------------------------------------------------*/
  122. IFFP PutCkHdr(context0, ckID, ckSize)
  123.       GroupContext *context0;  ID ckID;  LONG ckSize; {
  124.     register GroupContext *context = context0;
  125.     LONG minPSize = sizeof(ChunkHeader); /* physical chunk >= minPSize bytes*/
  126.  
  127.     /* CLIENT_ERROR if we're already inside a chunk or asked to write
  128.      * other than one FORM, LIST, or CAT at the top level of a file */
  129.     /* Also, non-positive ID values are illegal and used for error codes.*/
  130.     /* (We could check for other illegal IDs...)*/
  131.     if ( context->ckHdr.ckID != NULL_CHUNK  ||  ckID <= 0 )
  132.     return(CLIENT_ERROR);
  133.     else if (context->parent == NULL)  {
  134.     switch (ckID)  {
  135.         case FORM:  case LIST:  case CAT:  break;
  136.         default: return(CLIENT_ERROR);
  137.         }
  138.     if (context->position != 0)
  139.         return(CLIENT_ERROR);
  140.     }
  141.  
  142.     if ( Known(ckSize) ) {
  143.     if ( ckSize < 0 )
  144.         return(CLIENT_ERROR);
  145.     minPSize += ckSize;
  146.     };
  147.     if ( Known(context->bound)  &&
  148.          context->position + minPSize > context->bound )
  149.     return(CLIENT_ERROR);
  150.  
  151.     context->ckHdr.ckID   = ckID;
  152.     context->ckHdr.ckSize = ckSize;
  153.     context->bytesSoFar   = 0;
  154.     if (0 >
  155.     GWrite(context->file, (BYTE *)&context->ckHdr, sizeof(ChunkHeader))
  156.     )
  157.     return(DOS_ERROR);
  158.     context->position += sizeof(ChunkHeader);
  159.     return(IFF_OKAY);
  160.     }
  161.  
  162. /* ---------- IFFWriteBytes ---------------------------------------------*/
  163. IFFP IFFWriteBytes(context0, data, nBytes)
  164.       GroupContext *context0;  BYTE *data;  LONG nBytes; {
  165.     register GroupContext *context = context0;
  166.  
  167.     if ( context->ckHdr.ckID == NULL_CHUNK  ||    /* not in a chunk */
  168.      nBytes < 0  ||                /* negative nBytes */
  169.      (Known(context->bound)  &&        /* overflow context */
  170.         context->position + nBytes > context->bound)  ||
  171.      (Known(context->ckHdr.ckSize)  &&       /* overflow chunk */
  172.         context->bytesSoFar + nBytes > context->ckHdr.ckSize) )
  173.     return(CLIENT_ERROR);
  174.  
  175.     if (0 > GWrite(context->file, data, nBytes))
  176.     return(DOS_ERROR);
  177.  
  178.     context->bytesSoFar += nBytes;
  179.     context->position   += nBytes;
  180.     return(IFF_OKAY);
  181.     }
  182.  
  183. /* ---------- PutCkEnd -------------------------------------------------*/
  184. IFFP PutCkEnd(context0)  GroupContext *context0; {
  185.     register GroupContext *context = context0;
  186.     WORD zero = 0;    /* padding source */
  187.  
  188.     if ( context->ckHdr.ckID == NULL_CHUNK )  /* not in a chunk */
  189.     return(CLIENT_ERROR);
  190.  
  191.     if ( context->ckHdr.ckSize == szNotYetKnown ) {
  192.     /* go back and set the chunk size to bytesSoFar */
  193.     if ( 0 >
  194. GSeek(context->file, -(context->bytesSoFar + sizeof(LONG)), OFFSET_CURRENT) ||
  195.          0 >
  196. GWrite(context->file, (BYTE *)&context->bytesSoFar, sizeof(LONG))  ||
  197.          0 >
  198. GSeek(context->file, context->bytesSoFar, OFFSET_CURRENT)  )
  199.         return(DOS_ERROR);
  200.     }
  201.     else {  /* make sure the client wrote as many bytes as planned */
  202.     if ( context->ckHdr.ckSize != context->bytesSoFar )
  203.         return(CLIENT_ERROR);
  204.     };
  205.  
  206.     /* Write a pad byte if needed to bring us up to an even boundary.
  207.      * Since the context end must be even, and since we haven't
  208.      * overwritten the context, if we're on an odd position there must
  209.      * be room for a pad byte. */
  210.     if ( IS_ODD(context->bytesSoFar) ) {
  211.     if ( 0 > GWrite(context->file, (BYTE *)&zero, 1) )
  212.         return(DOS_ERROR);
  213.     context->position += 1;
  214.     };
  215.  
  216.     context->ckHdr.ckID   = NULL_CHUNK;
  217.     context->ckHdr.ckSize = context->bytesSoFar = 0;
  218.     return(IFF_OKAY);
  219.     }
  220.  
  221.